home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / AUTOCK3.PAK / README.TXT < prev    next >
Text File  |  1997-05-06  |  5KB  |  127 lines

  1. ========================================================================
  2.        MICROSOFT FOUNDATION CLASS LIBRARY : AutoClik
  3. ========================================================================
  4.  
  5. // This is a part of the Microsoft Foundation Classes C++ library.
  6. // Copyright (C) 1992-1995 Microsoft Corporation
  7. // All rights reserved.
  8. //
  9. // This source code is only intended as a supplement to the
  10. // Microsoft Foundation Classes Reference and related
  11. // electronic documentation provided with the library.
  12. // See these sources for detailed information regarding the
  13. // Microsoft Foundation Classes product.
  14.  
  15.  
  16. AppWizard has created this AutoClik application for you.  This application
  17. not only demonstrates the basics of using the Microsoft Foundation classes
  18. but is also a starting point for writing your application.
  19.  
  20. This file contains a summary of what you will find in each of the files that
  21. make up your AutoClik application.
  22.  
  23.  
  24. AutoClik.mak
  25.     This project file is compatible with the Visual C++ development
  26.     environment.
  27.  
  28.     It is also compatible with the NMAKE program provided with Visual C++.
  29.  
  30.     To build a debug version of the program from the MS-DOS prompt, type
  31. nmake /f AutoClik.mak CFG="Win32 Debug"
  32.     or to build a release version of the program, type
  33. nmake /f AutoClik.mak CFG="Win32 Release"
  34.  
  35.  
  36. AutoClik.h
  37.     This is the main header file for the application.  It includes other
  38.     project specific headers (including Resource.h) and declares the
  39.     CAutoClickApp application class.
  40.  
  41. AutoClik.cpp
  42.     This is the main application source file that contains the application
  43.     class CAutoClickApp.
  44.  
  45. AutoClik.rc
  46.     This is a listing of all of the Microsoft Windows resources that the
  47.     program uses.  It includes the icons, bitmaps, and cursors that are stored
  48.     in the RES subdirectory.  This file can be directly edited in the
  49.     Visual C++ development environment.
  50.  
  51. res\AutoClik.ico
  52.     This is an icon file, which is used as the application's icon.  This
  53.     icon is included by the main resource file AutoClik.rc.
  54.  
  55. res\AutoClik.rc2
  56.     This file contains resources that are not edited by the Visual C++
  57.     development environment.  You should place all resources not
  58.     editable by the resource editor in this file.
  59.  
  60. AutoClik.reg
  61.     This is an example .REG file that shows you the kind of registration
  62.     settings the framework will set for you.  You can use this as a .REG
  63.     file to go along with your application or just delete it and rely
  64.     on the default RegisterShellFileTypes registration.
  65.  
  66. AutoClik.odl
  67.     This file contains the Object Description Language source code for the
  68.     type library of your application.
  69.  
  70. AutoClik.clw
  71.     This file contains information used by ClassWizard to edit existing
  72.     classes or add new classes.  ClassWizard also uses this file to store
  73.     information needed to create and edit message maps and dialog data
  74.     maps and to create prototype member functions.
  75.  
  76. /////////////////////////////////////////////////////////////////////////////
  77.  
  78. For the main frame window:
  79.  
  80. MainFrm.h, MainFrm.cpp
  81.     These files contain the frame class CMainFrame, which is derived from
  82.     CMDIFrameWnd and controls all MDI frame features.
  83.  
  84. res\Toolbar.bmp
  85.     This bitmap file is used to create tiled images for the toolbar.
  86.     The initial toolbar and status bar are constructed in the
  87.     CMainFrame class.  Edit this toolbar bitmap along with the
  88.     array in MainFrm.cpp to add more toolbar buttons.
  89.  
  90. /////////////////////////////////////////////////////////////////////////////
  91.  
  92. AppWizard creates one document type and one view:
  93.  
  94. ClikDoc.h, ClikDoc.cpp - the document
  95.     These files contain your CAutoClickDoc class.  Edit these files to
  96.     add your special document data and to implement file saving and loading
  97.     (via CAutoClickDoc::Serialize).
  98.  
  99. ClikView.h, ClikView.cpp - the view of the document
  100.     These files contain your CAutoClickView class.
  101.     CAutoClickView objects are used to view CAutoClickDoc objects.
  102.  
  103. res\ClikDoc.ico
  104.     This is an icon file, which is used as the icon for MDI child windows
  105.     for the CAutoClickDoc class.  This icon is included by the main
  106.     resource file AutoClik.rc.
  107.  
  108.  
  109. /////////////////////////////////////////////////////////////////////////////
  110. Other standard files:
  111.  
  112. StdAfx.h, StdAfx.cpp
  113.     These files are used to build a precompiled header (PCH) file
  114.     named AutoClik.pch and a precompiled types file named StdAfx.obj.
  115.  
  116. Resource.h
  117.     This is the standard header file, which defines new resource IDs.
  118.     Visual C++ reads and updates this file.
  119.  
  120. /////////////////////////////////////////////////////////////////////////////
  121. Other notes:
  122.  
  123. AppWizard uses "TODO:" to indicate parts of the source code you
  124. should add to or customize.
  125.  
  126. /////////////////////////////////////////////////////////////////////////////
  127.